home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / src / sprited / fsio / fsioRpc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-02  |  1.1 KB  |  36 lines

  1. /*
  2.  * fsioRpc.h --
  3.  *
  4.  *    Declarations of RPC calls for the fsio module.
  5.  *
  6.  * Copyright 1990 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /r3/kupfer/spriteserver/src/sprited/fsio/RCS/fsioRpc.h,v 1.3 91/12/01 21:58:35 kupfer Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _FSIORPC
  19. #define _FSIORPC
  20.  
  21. #include <rpc.h>
  22.  
  23. /* procedures */
  24.  
  25. #ifdef SPRITED_MIGRATION
  26. extern ReturnStatus Fsio_RpcStreamMigClose _ARGS_((ClientData srvToken, 
  27.         int clientID, int command, Rpc_Storage *storagePtr));
  28. extern ReturnStatus Fsio_RpcStreamMigCloseNew _ARGS_((ClientData srvToken, 
  29.         int clientID, int command, Rpc_Storage *storagePtr));
  30. #else
  31. #define Fsio_RpcStreamMigClose    Rpc_NotImplemented
  32. #define Fsio_RpcStreamMigCloseNew    Rpc_NotImplemented
  33. #endif
  34.  
  35. #endif /* _FSIORPC */
  36.